import Link from "next/link"; import { getDictionary, type Locale } from "@/lib/site-content"; export default async function HomePage({ params, }: { params: Promise<{ locale: string }>; }) { const { locale } = await params; const dictionary = getDictionary(locale as Locale); return (
{dictionary.home.tag}

{dictionary.home.title}

{dictionary.home.subtitle}

{dictionary.home.primaryCta} {dictionary.home.secondaryCta}
{dictionary.home.freeTrial} {dictionary.home.socialProof}
{dictionary.home.stageLabel}
{dictionary.home.stageValue}

{dictionary.home.stageDescription}

{dictionary.home.heroPhrases.map((phrase) => ( {phrase} ))}
{dictionary.home.scenesTag}

{dictionary.home.scenesTitle}

{dictionary.home.scenesSubtitle}

{dictionary.home.scenes.map((scene) => (
{scene.category}

{scene.name}

{scene.description}

))}
{dictionary.home.flowTag}

{dictionary.home.flowTitle}

{dictionary.home.flowSubtitle}

{dictionary.home.flowSteps.map((step, index) => (
0{index + 1}

{step.title}

{step.description}

))}
{dictionary.home.trustTag}

{dictionary.home.trustTitle}

{dictionary.home.trustStats.map((stat) => (
{stat.value} {stat.label}
))}
); }